home *** CD-ROM | disk | FTP | other *** search
/ Slater & Charlie Go Camping / Slater & Charlie Go Camping (1995)(Sierra).iso / dos / install.scr < prev    next >
Text File  |  1995-09-11  |  1KB  |  71 lines

  1. clear
  2. space %1: 8000 NoSpace
  3. godir %1:%4 CantCreate
  4.  
  5. echo Copying Startup Files ...
  6. copy %2:version
  7. copy %2:*.*
  8.  
  9. rem  Create batch files on the fly and copy it to the root dir
  10. rem if exist %2:sciv.exe echo sciv > sierra.bat
  11. rem if exist %2:beta.exe echo beta > sierra.bat
  12. rem if exist %2:sierra.exe echo sierra > sierra.bat
  13. echo cd %4 > slater.bat
  14. echo call sierra -w 0 0 200 320 >> slater.bat
  15. echo cd .. >> slater.bat
  16. copy slater.bat ..
  17.  
  18. echo %3 > resource.cfg
  19.  
  20. echo Copying Game files...
  21. rem Earl - copy resource.000 + %2:resource.001
  22. rem Earl - copy resource.000 + %2:resource.002
  23.  
  24. rem Earl - echo Please wait - decompressing audio.
  25. rem Earl - echo This should take a few minutes.
  26. rem Earl - %2:auddcomp .\ %2: > nul
  27. rem Earl - rem %2:auddcomp .\ %2: -d
  28.  
  29. if ERRORLEVEL 1 goto AudError
  30.  
  31. rem  copy debug script if it's there
  32. if exist %2:98.* copy %2:98.*
  33.  
  34. :exit
  35. clear
  36. echo
  37. echo  To play NOW:
  38. echo     Type SLATER [ENTER].
  39. echo
  40. echo  To play LATER:
  41. echo     From the directory of %1:%4,
  42. echo     Type SLATER and press [ENTER].
  43. echo
  44. pause
  45. goto Exit2
  46.  
  47.  
  48. :NoSpace
  49. clear
  50. echo
  51. echo There is not enough space on %1: to install 
  52. echo        Slater and Charlie
  53. echo 8.0 megabytes of disk space are necessary.
  54. echo
  55. pause
  56.  
  57.  
  58. :Exit2
  59. end
  60.  
  61.  
  62. :CantCreate
  63. alert Unable to create directory %1:%4
  64. end
  65.  
  66. :AudError
  67. Alert AUDIO DECOMPERSSION FAILED!
  68. end
  69.  
  70. 
  71.